home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / Issue30 / pathed3 / PATHED3.ZIP / Source / SolutionsUnlimitedPathOptions.pas < prev   
Encoding:
Pascal/Delphi Source File  |  1997-12-02  |  1.1 KB  |  49 lines

  1. {-------------------------------------------------------------------------------
  2. Name                    :    SolutionsUnlimitedPathOptions.pas
  3. Author                : Robert Kozak
  4. Date                    : November 1, 1997
  5.  
  6. Copyright            : ⌐ 1997 Solutions Unlimited. All Rights Reserved.
  7.  
  8. Version             : 1.0
  9. Last Updated    :
  10.  
  11. Description        : Path Options dialog form.
  12.  
  13. Notes:
  14. -------------------------------------------------------------------------------}
  15. unit SolutionsUnlimitedPathOptions;
  16.  
  17. interface
  18.  
  19. uses
  20.   Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
  21.   StdCtrls, ComCtrls, ExtCtrls, Placemnt;
  22.  
  23. type
  24.   TfrmPathOptions = class(TForm)
  25.     Panel1: TPanel;
  26.     PageControl1: TPageControl;
  27.     TabSheet1: TTabSheet;
  28.     Panel2: TPanel;
  29.     Button1: TButton;
  30.     Button2: TButton;
  31.     GroupBox1: TGroupBox;
  32.     cbxSync: TCheckBox;
  33.     cbxDisplayPackages: TCheckBox;
  34.     FormStorage: TFormStorage;
  35.   private
  36.     { Private declarations }
  37.   public
  38.     { Public declarations }
  39.   end;
  40.  
  41. var
  42.   frmPathOptions: TfrmPathOptions;
  43.  
  44. implementation
  45.  
  46. {$R *.DFM}
  47.  
  48. end.
  49.